home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lantools / blueprnt / physical.mod < prev    next >
Text File  |  1989-09-27  |  962b  |  26 lines

  1. ;*************************************************************
  2. ;* Blueprint LAN BIOS Physical Layer Interrupt (PHYSICAL.MOD)*
  3. ;* by Craig Chaiken                                          *
  4. ;* August 19, 1989                                           *
  5. ;*************************************************************
  6.  
  7. physical_interrupt_table        dd      4*maxsockets dup (?)
  8.  
  9. physical_interrupt      proc    far
  10.         push    bx
  11.         push    cx
  12.         xor     bh,bh   ;build offset for physical interrupt vector entry
  13.         mov     cl,2
  14.         shl     bx,cl
  15.         add     bl,ah
  16.         shl     bx,cl
  17.         call    cs:physical_interrupt_table[bx]
  18.         pop     cx
  19.         pop     bx
  20.         retf    2
  21. physical_interrupt      endp
  22.  
  23. ;*************************************************************
  24. ;* End of PHYSICAL.MOD                                       *
  25. ;*************************************************************
  26.